From: Peter Michael Green Date: Tue, 21 Dec 2021 17:35:22 +0000 (+0000) Subject: Use a #define instead of a typedef for double_t in fdlibm to prevent conflicting... X-Git-Tag: archive/raspbian/115.9.1esr-1_deb12u1+rpi1~5 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=4602fdb438b53d660b93b911875baa99d67bb7f0;p=firefox-esr.git Use a #define instead of a typedef for double_t in fdlibm to prevent conflicting definitions error Gbp-Pq: Name use-a-define-instead-of-a-typedef-for-do.patch --- diff --git a/modules/fdlibm/src/math_private.h b/modules/fdlibm/src/math_private.h index 632d2c4c619..b7fecb02e58 100644 --- a/modules/fdlibm/src/math_private.h +++ b/modules/fdlibm/src/math_private.h @@ -35,7 +35,7 @@ typedef long double __double_t; #else typedef double __double_t; #endif -typedef __double_t double_t; +#define double_t __double_t typedef float __float_t; /*